home *** CD-ROM | disk | FTP | other *** search
- stop();
- if(!setVars)
- {
- var dropSpeed = 0;
- var maxDropSpeed = 18;
- var airSpeed = 1;
- var setVars = true;
- }
- var onEnterFrame = function()
- {
- if(_root.pauseMode == false)
- {
- if(_root.cm.hitTest(this))
- {
- if(_currentframe == 1)
- {
- gotoAndStop("explode");
- }
- else if(_currentframe == 2 && !took && _root.cm.hitTest(g.hitter))
- {
- took = true;
- if(_root.cm.hit == false)
- {
- _root.cm.hit = true;
- _root.health -= 5;
- }
- }
- }
- if(_root.bound.hitTest(_X,_Y,true))
- {
- gotoAndStop(2);
- }
- if(_currentframe == 1)
- {
- _Y = _Y + dropSpeed;
- if(dropSpeed < maxDropSpeed)
- {
- dropSpeed += airSpeed;
- }
- }
- g.play();
- }
- else
- {
- g.stop();
- }
- };
-